UITabBarController Modify [More ...] Appearance
Posted
by Mark
on Stack Overflow
See other posts from Stack Overflow
or by Mark
Published on 2009-09-23T12:42:53Z
Indexed on
2010/05/03
12:08 UTC
Read the original article
Hit count: 203
iphone
Hello everyone,
I would like to know if there is a way to change the text in the [More ...] tab. With the code below I am able to change the text in the view, however the text in the tab remains the same. Is there a way to access it and change it's appearance.
tabBarController.moreNavigationController.topViewController.navigationItem.title = NSLocalizedString(@"Meer", "");
My second question is about the [Edit] button in the More view. The code below does not work.
tabBarController.moreNavigationController.topViewController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Wijzigen" style:UIBarButtonItemStyleDone target:nil action:nil];
Does anyone have an idea?
Cheers.
© Stack Overflow or respective owner